home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Tools & Utilities
/
Collection of Tools and Utilities.iso
/
tex
/
itrns211.zip
/
SRC
/
PRIPS
< prev
next >
Wrap
Text File
|
1991-08-30
|
528b
|
17 lines
#!/bin/sh
# Shell program to cat PostScript output files generated
# from itrans (-P option). Prepends the font description file
# and the prologue file. Assumes Devnagari Output............
# set LIBDIR to the itrans lib directory
LIBDIR=/usr1/avinash/ITRANS/lib
# set DOCAT to empty if you want output on stdout, else
# assign to a pipe to the printer
# DOCAT=
# DOCAT="| lp"
DOCAT="| lp -oh"
eval cat $LIBDIR/devnac.ps $LIBDIR/itrans.pro $* $DOCAT
# eval need to evaluate the | char, if present, in DOCAT